home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / Projects / Questions & Answers / Q&A Programming Music / How to choose output folder? < prev    next >
Lisp/Scheme  |  1998-10-26  |  522b  |  17 lines

  1. HOW TO CHOOSE OUTPUT FOLDER
  2.  
  3. >How can I choose other folder to place the output midifiles?
  4. >Why doesn't this work:
  5. >
  6. >(setq direct (choose-directory-dialog ) number 34)
  7. >(eval `(play-file ,(concatenate 'string direct (format nil "File ~a" 
  8. >number)) i1 rr i2 rr i3 rr))
  9. >
  10. >It creates all the directory folders inside the output folder....
  11.  
  12. play-file-nocheck enables to save a midi file to a directory path 
  13. supplied
  14.  
  15. (defmacro play-file-f (songname &rest ll)
  16.   `(eval (append '(play-file-nocheck) (list ,songname) ',ll)))
  17.